home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / gfx / jpegaga2.lha / jpegAGAsrc / ppm2aga / libpbm.h < prev    next >
C/C++ Source or Header  |  1993-12-24  |  408b  |  18 lines

  1. /* libpbm.h - internal header file for libpbm portable bitmap library
  2. */
  3.  
  4. #ifndef _LIBPBM_H_
  5. #define _LIBPBM_H_
  6.  
  7. /* Here are some routines internal to the pbm library. */
  8.  
  9. char pbm_getc ( FILE* file );
  10. unsigned char pbm_getrawbyte ( FILE* file );
  11. int pbm_getint ( FILE* file );
  12.  
  13. int pbm_readmagicnumber ( FILE* file );
  14.  
  15. void pbm_readpbminitrest ( FILE* file, int* colsP, int* rowsP );
  16.  
  17. #endif /*_LIBPBM_H_*/
  18.